show more columns - rows of a Pandas DataFrame

87

show more columns / rows of a Pandas DataFrame -

import pandas as pd
pd.set_option('display.max_rows', 500)
pd.set_option('display.max_columns', 500)
pd.set_option('display.width', 1000)

Comments

Submit
0 Comments